home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / proptest / proptest.txt < prev    next >
Text File  |  1995-12-22  |  934b  |  19 lines

  1. This is some code i wrote to test my understanding of property editors, since this is not very well documented
  2. maybe it will help you get started on the subject.
  3.  
  4. This code example demonstrates using nested object properties, and defining array properties(which require
  5. a special property-editors) .
  6.  
  7. TPropTest is a componet with a published property of type TB which is a class.
  8. TPropTest uses TBPropery as a property editor for it's B property
  9. TBProperty uses a Dialog of type  TBDialog to edit its value.
  10.  
  11. class TB's data consists of 2 parts:
  12. 1) a published property of type TA, whish pubishes text property.
  13. 2) a public array property  ARR which is stored in the disk using the DefineProperties 'Protocol'.
  14.  
  15. Install Proptest in your Comp Lib and see what it does, then look into the code.
  16. I hope you can read my delphi dialect, if you have any comments I'm not beyond reach : drorz@optimedia.co.il.
  17.  
  18. cheers
  19.  Dror